Update README.md

Andrew Cantino 11 年 前
コミット
8fef538cf4
共有1 個のファイルを変更した6 個の追加6 個の削除を含む
  1. 6 6
      README.md

+ 6 - 6
README.md

@@ -2,17 +2,17 @@
2 2
 
3 3
 ## What is Huginn?
4 4
 
5
-Huginn is a system for building agents that perform automated tasks for you online.  They can read the web, watch for events, and take actions on your behalf.  Huginn's Agents create and consume events, propogating events along a directed event flow graph.  Think of it as Yahoo! Pipes plus ITTT, on your own server.  You always know who has your data.  You do.
5
+Huginn is a system for building agents that perform automated tasks for you online.  They can read the web, watch for events, and take actions on your behalf.  Huginn's Agents create and consume events, propagating events along a directed event flow graph.  Think of it as Yahoo! Pipes plus IFTTT on your own server.  You always know who has your data.  You do.
6 6
 
7 7
 ![the origin of the name](doc/imgs/the-name.png)
8 8
 
9
-#### We're just getting started, but here are some of the things that you can do right now with Huginn:
9
+#### This is just getting started, but here are some of the things that you can do right now with Huginn:
10 10
 
11 11
 * Watch for air travel deals
12 12
 * List terms you care about and receive emails when their occurrence on Twitter changes drastically
13 13
 * Track the weather and get an email when it's going to rain (or snow) tomorrow
14 14
 * Follow your project names on Twitter and get updates when people mention them
15
-* Scrape websites and receive email when they change
15
+* Scrape websites and receive emails when they change
16 16
 * Track your location over time
17 17
 
18 18
 ## Examples
@@ -37,12 +37,12 @@ If you just want to play around, you can simply clone this repository, then perf
37 37
 
38 38
 * Edit `config/secret_token.rb` and replace `REPLACE_ME_NOW!` with the output of `rake secret`.
39 39
 * Run `rake db:create`, `rake db:migrate`, and then `rake db:seed` to create a development MySQL database with some example seed data.  Run `rails s`, visit `http://localhost:3000`, and login with the username of `admin` and the password of `password`.
40
-* Make some extra Terminal windows and run `bundle exec rails runner bin/schedule.rb` and `bundle exec rails runner bin/twitter_stream.rb`
40
+* Make some extra Terminal windows and run `bundle exec rails runner bin/schedule.rb`, `bundle exec rails runner bin/twitter_stream.rb`, and `script/delayed_job run` in separate windows.
41 41
 * Setup some Agents!
42 42
 
43 43
 ### Real Start
44 44
 
45
-Follow these instructions if you wish to deploy your own version of Huginn or contribute back to the project.  GitHub doesn't make it easy to work with private forks of public repositories, so we recommend that you follow the following steps:
45
+Follow these instructions if you wish to deploy your own version of Huginn or contribute back to the project.  GitHub doesn't make it easy to work with private forks of public repositories, so I recommend that you follow the following steps:
46 46
 
47 47
 * Make a public fork of Huginn
48 48
 * Make a private, empty GitHub repository called `huginn-private`
@@ -59,7 +59,7 @@ Follow these instructions if you wish to deploy your own version of Huginn or co
59 59
         git remote add public git@github.com:you/huginn.git
60 60
 
61 61
 * Run the steps from *Quick Start* above to configure your copy of Huginn.
62
-* When you want to contribute patches, do a remote push from your private repository to your public fork, then make a pull request to us.
62
+* When you want to contribute patches, do a remote push from your private repository to your public fork of the relevant commits, then make a pull request to this repository.
63 63
 
64 64
 ## Deployment
65 65